﻿/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #000;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #000;
}
/* ===== About Us Page Banner ===== */
.page-banner {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.page-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .page-banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
        animation: bannerZoom 12s ease-out forwards;
    }

/* Slow zoom effect on background */
@keyframes bannerZoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }
}

/* Dark Navy Overlay */
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(10, 37, 64, 0.88) 100%);
    z-index: 2;
}

/* Decorative amber line at bottom */
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; 
    height: 5px;
    background: linear-gradient(90deg, #f5a623, #e8960f, #f5a623);
    z-index: 3;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 40px 20px 20px 0px;
}
 

/* Banner Title */
.banner-title {
    font-size: 52px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s ease 0.4s forwards;
}

    /* Amber accent under title */
    .banner-title span {
        color: #f5a623;
    }

/* Banner Subtitle */
.banner-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s ease 0.6s forwards;
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative corner accents */
.banner-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(245, 166, 35, 0.25);
    z-index: 3;
}

    .banner-accent.top-left {
        top: 40px;
        left: 40px;
        border-right: none;
        border-bottom: none;
    }

    .banner-accent.bottom-right {
        bottom: 40px;
        right: 40px;
        border-left: none;
        border-top: none;
    }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .page-banner {
        height: 320px;
    }

    .banner-title {
        font-size: 34px;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .banner-accent {
        width: 70px;
        height: 70px;
    }

        .banner-accent.top-left {
            top: 20px;
            left: 20px;
        }

        .banner-accent.bottom-right {
            bottom: 20px;
            right: 20px;
        }
}

@media (max-width: 480px) {
    .page-banner {
        height: 280px;
    }

    .banner-title {
        font-size: 28px;
    }

    .breadcrumb {
        padding: 6px 16px;
    }

        .breadcrumb a,
        .breadcrumb-current {
            font-size: 12px;
        }
}/* ===== Capabilities Section ===== */
.capabilities-section {
    padding: 80px 20px;
    background: #f8f9fb;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #0a2540;
    color: #f5a623;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    color: #0a2540;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .feature-row.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-row.reverse {
        flex-direction: row-reverse;
    }

.feature-image {
    flex: 1;
    min-width: 0;
}

    .feature-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 12px;
        display: block;
        transition: transform 0.5s ease;
    }

    .feature-image:hover img {
        transform: scale(1.03);
    }

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(10, 37, 64, 0.08);
    line-height: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a2540, #1a4a7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon svg {
        width: 30px;
        height: 30px;
        fill: #f5a623;
    }

.feature-title {
    font-size: 24px;
    color: #0a2540;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .feature-image img {
        height: 240px;
    }

    .section-title {
        font-size: 26px;
    }

    .feature-title {
        font-size: 20px;
    }

    .capabilities-section {
        padding: 50px 15px;
    }
}
/* ===== Services Section ===== */
.services-section {
    padding: 80px 20px;
    background: #f8f9fb;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #0a2540;
    color: #f5a623;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    color: #0a2540;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: #f5a623;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
}

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
    }

/* Image */
.service-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* Image Overlay */
.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.55), transparent 55%);
}

/* Icon Badge on Image */
.service-icon-badge {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5a623, #e8960f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon-badge {
    transform: rotateY(180deg);
}

.service-icon-badge svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* Content */
.service-content {
    padding: 25px 22px 30px;
    flex: 1;
    border-bottom: 4px solid transparent;
    transition: border-color 0.4s ease;
}

.service-card:hover .service-content {
    border-bottom-color: #f5a623;
}

.service-title {
    font-size: 19px;
    color: #0a2540;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .services-section {
        padding: 50px 15px;
    }

    .service-image {
        height: 220px;
    }
}
/* ===== Projects Section ===== */
.projects-section {
    padding: 80px 20px;
    background: #f8f9fb;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #0a2540;
    color: #f5a623;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    color: #0a2540;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: #0a2540;
}

    .project-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .project-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

/* Hover Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-category {
    font-size: 11px;
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.05s;
}

.project-title {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.project-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.15s;
}

.project-card:hover .project-category,
.project-card:hover .project-title,
.project-card:hover .project-subtitle {
    transform: translateY(0);
}

/* Zoom Icon */
.project-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f5a623, #e8960f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    transition: all 0.4s ease;
}

.project-card:hover .project-zoom-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.project-zoom-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 28, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

/* Lightbox Image */
.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.35s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 72vh;
    width: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    animation: lightboxZoom 0.4s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Caption */
.lightbox-caption {
    margin-top: 20px;
}

.lightbox-category {
    font-size: 12px;
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lightbox-title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.lightbox-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.lightbox-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .lightbox-close:hover {
        background: #f5a623;
        transform: rotate(90deg);
    }

    .lightbox-close svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

/* Prev / Next Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .lightbox-nav:hover {
        background: #f5a623;
    }

    .lightbox-nav svg {
        width: 22px;
        height: 22px;
        fill: #fff;
    }

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .project-card img {
        height: 190px;
    }

    .section-title {
        font-size: 26px;
    }

    .projects-section {
        padding: 50px 15px;
    }

    /* Lightbox responsive */
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .lightbox-title {
        font-size: 18px;
    }

    .lightbox-content img {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 230px;
    }

    /* Always show info on mobile */
    .project-overlay {
        opacity: 1;
    }

    .project-category,
    .project-title,
    .project-subtitle {
        transform: translateY(0);
    }

    .project-zoom-icon {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
/* ===== Non-Automobile Projects Section ===== */
.na-projects-section {
    padding: 80px 20px;
    background: #fff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #0a2540;
    color: #f5a623;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    color: #0a2540;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Projects Grid (3 columns for 6 items) */
.na-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Project Card */
.na-project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: #0a2540;
}

    .na-project-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .na-project-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

/* Hover Overlay */
.na-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.na-project-card:hover .na-project-overlay {
    opacity: 1;
}

.na-project-card:hover img {
    transform: scale(1.1);
}

.na-project-category {
    font-size: 11px;
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.05s;
}

.na-project-title {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.na-project-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.15s;
}

.na-project-card:hover .na-project-category,
.na-project-card:hover .na-project-title,
.na-project-card:hover .na-project-subtitle {
    transform: translateY(0);
}

/* Zoom Icon */
.na-project-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f5a623, #e8960f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    transition: all 0.4s ease;
}

.na-project-card:hover .na-project-zoom-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.na-project-zoom-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ===== LIGHTBOX (Non-Automobile) ===== */
.na-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 28, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

    .na-lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.na-lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.35s ease;
}

.na-lightbox.active .na-lightbox-content {
    transform: scale(1);
}

.na-lightbox-content img {
    max-width: 100%;
    max-height: 72vh;
    width: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    animation: naLightboxZoom 0.4s ease;
}

@keyframes naLightboxZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Caption */
.na-lightbox-caption {
    margin-top: 20px;
}

.na-lightbox-category {
    font-size: 12px;
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.na-lightbox-title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.na-lightbox-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.na-lightbox-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* Close Button */
.na-lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .na-lightbox-close:hover {
        background: #f5a623;
        transform: rotate(90deg);
    }

    .na-lightbox-close svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

/* Prev / Next Buttons */
.na-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .na-lightbox-nav:hover {
        background: #f5a623;
    }

    .na-lightbox-nav svg {
        width: 22px;
        height: 22px;
        fill: #fff;
    }

.na-lightbox-prev {
    left: 30px;
}

.na-lightbox-next {
    right: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .na-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .na-projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .na-project-card img {
        height: 230px;
    }

    .section-title {
        font-size: 26px;
    }

    .na-projects-section {
        padding: 50px 15px;
    }

    /* Always show info on mobile */
    .na-project-overlay {
        opacity: 1;
    }

    .na-project-category,
    .na-project-title,
    .na-project-subtitle {
        transform: translateY(0);
    }

    .na-project-zoom-icon {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    /* Lightbox responsive */
    .na-lightbox-prev {
        left: 10px;
    }

    .na-lightbox-next {
        right: 10px;
    }

    .na-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .na-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .na-lightbox-title {
        font-size: 18px;
    }

    .na-lightbox-content img {
        max-height: 60vh;
    }
}
/* ===== EV Projects Section ===== */
.ev-projects-section {
    padding: 80px 20px;
    background: #f8f9fb;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #0a2540;
    color: #f5a623;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    color: #0a2540;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Projects Grid */
.ev-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Project Card */
.ev-project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: #0a2540;
}

    .ev-project-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .ev-project-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

/* Hover Overlay */
.ev-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ev-project-card:hover .ev-project-overlay {
    opacity: 1;
}

.ev-project-card:hover img {
    transform: scale(1.1);
}

.ev-project-category {
    font-size: 11px;
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.05s;
}

.ev-project-title {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.ev-project-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.15s;
}

.ev-project-card:hover .ev-project-category,
.ev-project-card:hover .ev-project-title,
.ev-project-card:hover .ev-project-subtitle {
    transform: translateY(0);
}

/* Zoom Icon */
.ev-project-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f5a623, #e8960f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    transition: all 0.4s ease;
}

.ev-project-card:hover .ev-project-zoom-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.ev-project-zoom-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ===== LIGHTBOX (EV) ===== */
.ev-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 28, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

    .ev-lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.ev-lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.35s ease;
}

.ev-lightbox.active .ev-lightbox-content {
    transform: scale(1);
}

.ev-lightbox-content img {
    max-width: 100%;
    max-height: 72vh;
    width: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    animation: evLightboxZoom 0.4s ease;
}

@keyframes evLightboxZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Caption */
.ev-lightbox-caption {
    margin-top: 20px;
}

.ev-lightbox-category {
    font-size: 12px;
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ev-lightbox-title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.ev-lightbox-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.ev-lightbox-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* Close Button */
.ev-lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .ev-lightbox-close:hover {
        background: #f5a623;
        transform: rotate(90deg);
    }

    .ev-lightbox-close svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

/* Prev / Next Buttons */
.ev-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .ev-lightbox-nav:hover {
        background: #f5a623;
    }

    .ev-lightbox-nav svg {
        width: 22px;
        height: 22px;
        fill: #fff;
    }

.ev-lightbox-prev {
    left: 30px;
}

.ev-lightbox-next {
    right: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .ev-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ev-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ev-project-card img {
        height: 190px;
    }

    .section-title {
        font-size: 26px;
    }

    .ev-projects-section {
        padding: 50px 15px;
    }

    /* Lightbox responsive */
    .ev-lightbox-prev {
        left: 10px;
    }

    .ev-lightbox-next {
        right: 10px;
    }

    .ev-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .ev-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .ev-lightbox-title {
        font-size: 18px;
    }

    .ev-lightbox-content img {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .ev-projects-grid {
        grid-template-columns: 1fr;
    }

    .ev-project-card img {
        height: 230px;
    }

    /* Always show info on mobile */
    .ev-project-overlay {
        opacity: 1;
    }

    .ev-project-category,
    .ev-project-title,
    .ev-project-subtitle {
        transform: translateY(0);
    }

    .ev-project-zoom-icon {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}/* ---------- All styles scoped under .elicast-about ---------- */
.elicast-about {
    --el-navy: #0a1628;
    --el-navy-2: #122544;
    --el-accent: #f97316;
    --el-accent-dark: #ea580c;
    --el-amber: #fbbf24;
    --el-light: #f5f7fa;
    --el-grey: #5b6b80;
    --el-border: #e4e9f0;
    --el-radius: 16px;
    --el-shadow: 0 20px 45px rgba(10,22,40,.08);
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--el-grey);
    overflow-x: hidden;
}

    .elicast-about h1, .elicast-about h2, .elicast-about h3, .elicast-about h4 {
        font-family: 'Sora',sans-serif;
        color: var(--el-navy);
        line-height: 1.25;
        margin: 0;
    }

    .elicast-about a {
        text-decoration: none
    }

    .elicast-about .el-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px
    }

    .elicast-about section {
        padding: 95px 0
    }

    /* Section tag (+ ABOUT US style) */
    .elicast-about .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Sora';
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--el-accent);
        margin-bottom: 18px;
    }

        .elicast-about .section-tag::before {
            content: "+";
            font-size: 18px;
            font-weight: 800
        }

    /* Buttons */
    .elicast-about .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Sora';
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .5px;
        padding: 15px 32px;
        border-radius: 8px;
        transition: .35s;
        cursor: pointer;
        border: 2px solid transparent;
    }

        .elicast-about .btn i {
            transition: .35s
        }

    .elicast-about .btn-primary {
        background: var(--el-accent);
        color: #fff;
        box-shadow: 0 10px 25px rgba(249,115,22,.35)
    }

        .elicast-about .btn-primary:hover {
            background: var(--el-accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(249,115,22,.45)
        }

    .elicast-about .btn-outline {
        border-color: var(--el-navy);
        color: var(--el-navy);
        background: transparent
    }

        .elicast-about .btn-outline:hover {
            background: var(--el-navy);
            color: #fff;
            transform: translateY(-3px)
        }

            .elicast-about .btn-outline:hover i {
                transform: translateX(4px)
            }

    /* Scroll reveal */
    .elicast-about .reveal {
        opacity: 0;
        transform: translateY(35px);
        transition: opacity .8s ease,transform .8s ease
    }

        .elicast-about .reveal.visible {
            opacity: 1;
            transform: none
        }

    /* ---------- HERO ---------- */
    .elicast-about .about-hero {
        padding: 110px 0 100px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(160deg,#ffffff 0%,#f2f6fb 100%);
    }

        .elicast-about .about-hero::after {
            content: "";
            position: absolute;
            top: -120px;
            right: -120px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle,rgba(249,115,22,.10),transparent 70%);
            border-radius: 50%;
        }

    .elicast-about .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 65px;
        align-items: center;
        position: relative;
        z-index: 2
    }

    .elicast-about .exp-badge {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 22px
    }

    .elicast-about .exp-num {
        font-family: 'Barlow Condensed';
        font-size: 100px;
        font-weight: 700;
        line-height: .9;
        color: var(--el-accent);
    }

    .elicast-about .exp-label {
        font-family: 'Sora';
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--el-navy);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-left: 3px solid var(--el-accent);
        padding-left: 16px;
    }

    .elicast-about .hero-content h1 {
        font-size: 46px;
        font-weight: 800;
        margin-bottom: 14px
    }

        .elicast-about .hero-content h1 span {
            color: var(--el-accent)
        }

    .elicast-about .hero-subtitle {
        font-family: 'Sora';
        font-size: 16px;
        font-weight: 600;
        color: var(--el-navy-2);
        letter-spacing: .5px;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 22px;
    }

        .elicast-about .hero-subtitle::before {
            content: "";
            width: 38px;
            height: 3px;
            background: var(--el-accent);
            border-radius: 2px
        }

    .elicast-about .hero-content p {
        margin-bottom: 34px;
        max-width: 560px
    }

    .elicast-about .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap
    }

    /* Hero image + floating stat */
    .elicast-about .hero-media {
        position: relative
    }

    .elicast-about .image-box {
        position: relative;
        border-radius: var(--el-radius);
        overflow: hidden;
        background: linear-gradient(135deg,#d7e0ec,#b9c8dc);
        aspect-ratio: 4/3.4;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--el-shadow);
    }

        .elicast-about .image-box i {
            font-size: 90px;
            color: #8ba0bc
        }

        .elicast-about .image-box::before {
            content: "";
            position: absolute;
            inset: 16px;
            border: 2px dashed rgba(255,255,255,.65);
            border-radius: 12px
        }

    .elicast-about .hero-media::before {
        content: "";
        position: absolute;
        top: -22px;
        right: -22px;
        width: 150px;
        height: 150px;
        z-index: -1;
        background: repeating-linear-gradient(0deg,var(--el-accent) 0 2px,transparent 2px 12px), repeating-linear-gradient(90deg,var(--el-accent) 0 2px,transparent 2px 12px);
        opacity: .35;
        border-radius: 12px;
    }

    .elicast-about .stat-card {
        position: absolute;
        left: -34px;
        bottom: 38px;
        background: var(--el-navy);
        color: #fff;
        padding: 24px 30px;
        border-radius: 14px;
        border-bottom: 4px solid var(--el-accent);
        box-shadow: 0 25px 45px rgba(10,22,40,.35);
        max-width: 290px;
    }

    .elicast-about .stat-num {
        font-family: 'Barlow Condensed';
        font-size: 46px;
        font-weight: 700;
        color: var(--el-amber);
        line-height: 1;
        display: block
    }

    .elicast-about .stat-label {
        font-size: 13.5px;
        letter-spacing: .6px;
        color: #c3cede;
        display: block;
        margin-top: 4px
    }

    /* ---------- FEATURE CARDS ---------- */
    .elicast-about .features {
        background: var(--el-light)
    }

    .elicast-about .features-grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 26px
    }

    .elicast-about .feature-card {
        position: relative;
        background: #fff;
        border: 1px solid var(--el-border);
        border-top: 4px solid transparent;
        border-radius: var(--el-radius);
        padding: 38px 28px;
        transition: .4s;
    }

        .elicast-about .feature-card:hover {
            transform: translateY(-10px);
            border-top-color: var(--el-accent);
            box-shadow: var(--el-shadow)
        }

    .elicast-about .feature-num {
        position: absolute;
        top: 12px;
        right: 20px;
        font-family: 'Barlow Condensed';
        font-size: 70px;
        font-weight: 700;
        color: rgba(10,22,40,.06);
        line-height: 1;
        transition: .4s;
    }

    .elicast-about .feature-card:hover .feature-num {
        color: rgba(249,115,22,.15)
    }

    .elicast-about .feature-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(249,115,22,.1);
        color: var(--el-accent);
        font-size: 24px;
        margin-bottom: 22px;
        transition: .4s;
    }

    .elicast-about .feature-card:hover .feature-icon {
        background: var(--el-accent);
        color: #fff;
        transform: rotateY(180deg)
    }

    .elicast-about .feature-card h3 {
        font-size: 19px;
        margin-bottom: 12px
    }

    .elicast-about .feature-card p {
        font-size: 14.5px;
        line-height: 1.7;
        margin: 0
    }

    .elicast-about .features-grid .feature-card:nth-child(2) {
        transition-delay: .1s
    }

    .elicast-about .features-grid .feature-card:nth-child(3) {
        transition-delay: .2s
    }

    .elicast-about .features-grid .feature-card:nth-child(4) {
        transition-delay: .3s
    }

    /* ---------- ABOUT ELICAST ---------- */
    .elicast-about .about-sec .about-grid {
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 70px;
        align-items: center
    }

    .elicast-about .about-media {
        position: relative
    }

    .elicast-about .about-image {
        border-radius: var(--el-radius);
        overflow: hidden;
        aspect-ratio: 4/3.6;
        background: linear-gradient(135deg,#c9d6e6,#a9bcd4);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--el-shadow);
    }

        .elicast-about .about-image i {
            font-size: 85px;
            color: #7f95b2
        }

    .elicast-about .since-badge {
        position: absolute;
        top: 26px;
        right: -24px;
        background: var(--el-accent);
        color: #fff;
        padding: 16px 22px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 15px 30px rgba(249,115,22,.4);
        font-family: 'Sora';
        font-size: 14px;
        font-weight: 600;
    }

        .elicast-about .since-badge i {
            font-size: 22px
        }

    .elicast-about .about-sec h2 {
        font-size: 36px;
        margin-bottom: 12px
    }

        .elicast-about .about-sec h2 span {
            color: var(--el-accent)
        }

    .elicast-about .about-point {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Sora';
        font-size: 15px;
        font-weight: 600;
        color: var(--el-navy);
        margin-bottom: 14px;
    }

        .elicast-about .about-point i {
            color: var(--el-accent);
            font-size: 16px
        }

    .elicast-about .about-sec p {
        margin: 18px 0 28px
    }

    .elicast-about .about-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap
    }

    /* ---------- TEAM ---------- */
    .elicast-about .team-sec {
        background: radial-gradient(circle at 15% 20%,rgba(249,115,22,.09),transparent 40%), radial-gradient(circle at 85% 80%,rgba(251,191,36,.06),transparent 40%), var(--el-navy);
    }

    .elicast-about .team-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 60px
    }

        .elicast-about .team-head .section-tag {
            justify-content: center
        }

        .elicast-about .team-head h2 {
            color: #fff;
            font-size: 38px
        }

            .elicast-about .team-head h2 span {
                color: var(--el-accent)
            }

    .elicast-about .team-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 30px
    }

    .elicast-about .team-card {
        position: relative;
        background: var(--el-navy-2);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: var(--el-radius);
        overflow: hidden;
        transition: .4s;
    }

        .elicast-about .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(249,115,22,.5);
            box-shadow: 0 25px 50px rgba(0,0,0,.4)
        }

    .elicast-about .team-photo {
        position: relative;
        aspect-ratio: 4/3.6;
        overflow: hidden
    }

    .elicast-about .photo-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,#1c3557,#0f2038);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .4s;
    }

        .elicast-about .photo-placeholder i {
            font-size: 70px;
            color: rgba(255,255,255,.15);
            transition: .4s
        }

    .elicast-about .team-card:hover .photo-placeholder i {
        color: rgba(249,115,22,.5);
        transform: scale(1.1)
    }

    .elicast-about .team-index {
        position: absolute;
        top: 14px;
        left: 18px;
        z-index: 2;
        font-family: 'Barlow Condensed';
        font-size: 52px;
        font-weight: 700;
        color: rgba(255,255,255,.12);
        line-height: 1;
        transition: .4s;
    }

    .elicast-about .team-card:hover .team-index {
        color: rgba(249,115,22,.6)
    }

    .elicast-about .team-body {
        padding: 28px 26px 32px
    }

        .elicast-about .team-body h3 {
            color: #fff;
            font-size: 21px;
            margin-bottom: 6px
        }

    .elicast-about .team-role {
        display: inline-block;
        font-family: 'Sora';
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--el-amber);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(249,115,22,.4);
    }

    .elicast-about .team-body p {
        font-size: 14px;
        color: #a9b8cc;
        line-height: 1.75;
        margin: 0
    }

    .elicast-about .team-grid .team-card:nth-child(2) {
        transition-delay: .12s
    }

    .elicast-about .team-grid .team-card:nth-child(3) {
        transition-delay: .24s
    }

    /* ---------- CLIENTS ---------- */
    .elicast-about .clients {
        background: var(--el-light);
        padding-bottom: 105px
    }

    .elicast-about .clients-head {
        text-align: center;
        margin-bottom: 55px
    }

        .elicast-about .clients-head .section-tag {
            justify-content: center
        }

        .elicast-about .clients-head h2 {
            font-size: 38px
        }

    .elicast-about .marquee {
        overflow: hidden;
        position: relative
    }

        .elicast-about .marquee::before, .elicast-about .marquee::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .elicast-about .marquee::before {
            left: 0;
            background: linear-gradient(90deg,var(--el-light),transparent)
        }

        .elicast-about .marquee::after {
            right: 0;
            background: linear-gradient(-90deg,var(--el-light),transparent)
        }

    .elicast-about .marquee-track {
        display: flex;
        width: max-content;
        animation: el-marquee 30s linear infinite
    }

    .elicast-about .marquee:hover .marquee-track {
        animation-play-state: paused
    }

@keyframes el-marquee {
    to {
        transform: translateX(-50%)
    }
}

.elicast-about .logo-item {
    min-width: 200px;
    height: 110px;
    margin-right: 24px;
    background: #fff;
    border: 1px solid var(--el-border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    filter: grayscale(1);
    opacity: .75;
    transition: .4s;
    cursor: pointer;
}

    .elicast-about .logo-item:hover {
        filter: none;
        opacity: 1;
        border-color: var(--el-accent);
        box-shadow: var(--el-shadow);
        transform: translateY(-5px)
    }

    .elicast-about .logo-item i {
        font-size: 30px;
        color: var(--el-navy-2)
    }

    .elicast-about .logo-item span {
        font-family: 'Sora';
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--el-grey)
    }

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .elicast-about .hero-grid, .elicast-about .about-sec .about-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .elicast-about .hero-content h1 {
        font-size: 38px
    }

    .elicast-about .features-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .elicast-about .team-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto
    }

    .elicast-about .stat-card {
        left: 16px
    }

    .elicast-about .since-badge {
        right: 16px
    }

    .elicast-about .about-sec h2 {
        font-size: 30px
    }
}

@media(max-width:600px) {
    .elicast-about section {
        padding: 70px 0
    }

    .elicast-about .exp-num {
        font-size: 70px
    }

    .elicast-about .hero-content h1 {
        font-size: 30px
    }

    .elicast-about .features-grid {
        grid-template-columns: 1fr
    }

    .elicast-about .stat-card {
        position: static;
        margin-top: 20px;
        max-width: 100%
    }

    .elicast-about .team-head h2, .elicast-about .clients-head h2 {
        font-size: 28px
    }

    .elicast-about .btn {
        padding: 13px 24px
    }
}
.elicast-infra {
    --el-navy: #0a1628;
    --el-navy-2: #122544;
    --el-accent: #f97316;
    --el-accent-dark: #ea580c;
    --el-amber: #fbbf24;
    --el-light: #f5f7fa;
    --el-grey: #5b6b80;
    --el-border: #e4e9f0;
    --el-radius: 16px;
    --el-shadow: 0 20px 45px rgba(10,22,40,.08);
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--el-grey);
    overflow-x: hidden;
}

    .elicast-infra h1, .elicast-infra h2, .elicast-infra h3, .elicast-infra h4 {
        font-family: 'Sora',sans-serif;
        color: var(--el-navy);
        line-height: 1.25;
        margin: 0;
    }

    .elicast-infra a {
        text-decoration: none
    }

    .elicast-infra .el-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px
    }

    .elicast-infra section {
        padding: 95px 0
    }

    /* Section tag (+ style) */
    .elicast-infra .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Sora';
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--el-accent);
        margin-bottom: 18px;
    }

        .elicast-infra .section-tag::before {
            content: "+";
            font-size: 18px;
            font-weight: 800
        }

    /* Scroll reveal */
    .elicast-infra .reveal {
        opacity: 0;
        transform: translateY(35px);
        transition: opacity .8s ease,transform .8s ease
    }

        .elicast-infra .reveal.visible {
            opacity: 1;
            transform: none
        }

    /* ---------- SECTION 1 : RESEARCH & DEVELOPMENT ---------- */
    .elicast-infra .infra-rd {
        padding: 95px 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(160deg,#ffffff 0%,#f2f6fb 100%);
    }

        .elicast-infra .infra-rd::after {
            content: "";
            position: absolute;
            top: -110px;
            right: -110px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle,rgba(249,115,22,.10),transparent 70%);
            border-radius: 50%;
        }

    .elicast-infra .rd-grid {
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 65px;
        align-items: center;
        position: relative;
        z-index: 2
    }

    .elicast-infra .rd-media {
        position: relative
    }

    .elicast-infra .rd-image {
        border-radius: var(--el-radius);
        overflow: hidden;
        aspect-ratio: 4/3.5;
        background: linear-gradient(135deg,#c9d6e6,#a9bcd4);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--el-shadow);
    }

        .elicast-infra .rd-image i {
            font-size: 85px;
            color: #7f95b2
        }

    .elicast-infra .rd-media::before {
        content: "";
        position: absolute;
        top: -22px;
        left: -22px;
        width: 150px;
        height: 150px;
        z-index: -1;
        background: repeating-linear-gradient(0deg,var(--el-accent) 0 2px,transparent 2px 12px), repeating-linear-gradient(90deg,var(--el-accent) 0 2px,transparent 2px 12px);
        opacity: .35;
        border-radius: 12px;
    }

    .elicast-infra .rd-badge {
        position: absolute;
        bottom: 30px;
        right: -24px;
        background: var(--el-accent);
        color: #fff;
        padding: 16px 22px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 15px 30px rgba(249,115,22,.4);
        font-family: 'Sora';
        font-size: 14px;
        font-weight: 600;
    }

        .elicast-infra .rd-badge i {
            font-size: 22px
        }

    .elicast-infra .rd-content h2 {
        font-size: 40px;
        margin-bottom: 14px
    }

        .elicast-infra .rd-content h2 span {
            color: var(--el-accent)
        }

    .elicast-infra .rd-subtitle {
        font-family: 'Sora';
        font-size: 16px;
        font-weight: 600;
        color: var(--el-navy-2);
        letter-spacing: .5px;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 22px;
    }

        .elicast-infra .rd-subtitle::before {
            content: "";
            width: 38px;
            height: 3px;
            background: var(--el-accent);
            border-radius: 2px
        }

    .elicast-infra .rd-content p {
        margin-bottom: 20px
    }

    .elicast-infra .rd-chips {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 14px
    }

    .elicast-infra .chip {
        display: flex;
        align-items: center;
        gap: 11px;
        background: #fff;
        border: 1px solid var(--el-border);
        border-radius: 10px;
        padding: 13px 16px;
        font-family: 'Sora';
        font-size: 13.5px;
        font-weight: 600;
        color: var(--el-navy);
        transition: .35s;
        cursor: default;
    }

        .elicast-infra .chip i {
            color: var(--el-accent);
            font-size: 16px
        }

        .elicast-infra .chip:hover {
            border-color: var(--el-accent);
            transform: translateY(-3px);
            box-shadow: var(--el-shadow)
        }

    .elicast-infra .rd-chips .chip:nth-child(2) {
        transition-delay: .1s
    }

    .elicast-infra .rd-chips .chip:nth-child(3) {
        transition-delay: .2s
    }

    .elicast-infra .rd-chips .chip:nth-child(4) {
        transition-delay: .3s
    }

    /* ---------- SECTION 2 : OPERATIONS ---------- */
    .elicast-infra .infra-ops {
        background: var(--el-light)
    }

    .elicast-infra .ops-head {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 34px
    }

        .elicast-infra .ops-head .section-tag {
            justify-content: center
        }

        .elicast-infra .ops-head h2 {
            font-size: 38px;
            margin-bottom: 14px
        }

            .elicast-infra .ops-head h2 span {
                color: var(--el-accent)
            }

    .elicast-infra .process-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin: 0 auto 55px;
        max-width: 900px
    }

    .elicast-infra .pill {
        background: #fff;
        border: 1px solid var(--el-border);
        border-radius: 50px;
        padding: 9px 22px;
        font-family: 'Sora';
        font-size: 13px;
        font-weight: 600;
        color: var(--el-navy-2);
        transition: .3s;
        cursor: default;
    }

        .elicast-infra .pill:hover {
            background: var(--el-accent);
            color: #fff;
            border-color: var(--el-accent);
            transform: translateY(-2px)
        }

    .elicast-infra .ops-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 26px
    }

    .elicast-infra .ops-card {
        position: relative;
        background: #fff;
        border: 1px solid var(--el-border);
        border-top: 3px solid transparent;
        border-radius: var(--el-radius);
        padding: 30px 26px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: .4s;
    }

        .elicast-infra .ops-card:hover {
            transform: translateY(-8px);
            border-top-color: var(--el-accent);
            box-shadow: var(--el-shadow)
        }

    .elicast-infra .ops-icon {
        flex-shrink: 0;
        width: 54px;
        height: 54px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(249,115,22,.1);
        color: var(--el-accent);
        font-size: 20px;
        transition: .4s;
    }

    .elicast-infra .ops-card:hover .ops-icon {
        background: var(--el-accent);
        color: #fff;
        transform: rotateY(180deg)
    }

    .elicast-infra .ops-card h3 {
        font-size: 16.5px;
        line-height: 1.45;
        padding-top: 4px
    }

    .elicast-infra .ops-grid .ops-card:nth-child(2) {
        transition-delay: .08s
    }

    .elicast-infra .ops-grid .ops-card:nth-child(3) {
        transition-delay: .16s
    }

    .elicast-infra .ops-grid .ops-card:nth-child(4) {
        transition-delay: .24s
    }

    .elicast-infra .ops-grid .ops-card:nth-child(5) {
        transition-delay: .32s
    }

    .elicast-infra .ops-grid .ops-card:nth-child(6) {
        transition-delay: .40s
    }

    /* ---------- SECTION 3 : QUALITY ---------- */
    .elicast-infra .infra-quality {
        background: radial-gradient(circle at 82% 12%,rgba(249,115,22,.10),transparent 42%), radial-gradient(circle at 10% 88%,rgba(251,191,36,.06),transparent 42%), var(--el-navy);
    }

    .elicast-infra .quality-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 65px;
        align-items: center
    }

    .elicast-infra .quality-content .section-tag {
        color: var(--el-amber)
    }

    .elicast-infra .quality-content h2 {
        color: #fff;
        font-size: 38px;
        margin-bottom: 22px
    }

        .elicast-infra .quality-content h2 span {
            color: var(--el-accent)
        }

    .elicast-infra .quality-content p {
        color: #a9b8cc;
        margin-bottom: 20px
    }

    .elicast-infra .quality-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 26px
    }

    .elicast-infra .q-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        border: 1px solid rgba(255,255,255,.15);
        background: rgba(255,255,255,.05);
        border-radius: 50px;
        padding: 9px 18px;
        font-family: 'Sora';
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: .5px;
        color: #c3cede;
        transition: .3s;
    }

        .elicast-infra .q-badge i {
            color: var(--el-amber);
            font-size: 14px
        }

        .elicast-infra .q-badge:hover {
            border-color: var(--el-accent);
            color: #fff;
            transform: translateY(-2px)
        }

    .elicast-infra .commit-card {
        position: relative;
        background: #fff;
        border-radius: var(--el-radius);
        padding: 40px 36px;
        box-shadow: 0 30px 60px rgba(0,0,0,.35);
        overflow: hidden;
    }

        .elicast-infra .commit-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg,var(--el-accent),var(--el-amber));
        }

        .elicast-infra .commit-card h3 {
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px
        }

            .elicast-infra .commit-card h3 i {
                color: var(--el-accent);
                font-size: 24px
            }

    .elicast-infra .commit-list {
        list-style: none;
        margin: 0;
        padding: 0
    }

        .elicast-infra .commit-list li {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            padding: 14px 0;
            border-bottom: 1px dashed var(--el-border);
            font-family: 'Sora';
            font-size: 14.5px;
            font-weight: 600;
            color: var(--el-navy);
            transition: .3s;
        }

            .elicast-infra .commit-list li:last-child {
                border-bottom: none
            }

            .elicast-infra .commit-list li i {
                color: var(--el-accent);
                margin-top: 4px;
                font-size: 15px
            }

            .elicast-infra .commit-list li:hover {
                padding-left: 6px;
                color: var(--el-accent-dark)
            }

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .elicast-infra .rd-grid, .elicast-infra .quality-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .elicast-infra .rd-content h2 {
        font-size: 34px
    }

    .elicast-infra .quality-content h2, .elicast-infra .ops-head h2 {
        font-size: 32px
    }

    .elicast-infra .ops-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .elicast-infra .rd-badge {
        right: 16px
    }
}

@media(max-width:600px) {
    .elicast-infra section {
        padding: 70px 0
    }

    .elicast-infra .rd-content h2 {
        font-size: 28px
    }

    .elicast-infra .quality-content h2, .elicast-infra .ops-head h2 {
        font-size: 27px
    }

    .elicast-infra .ops-grid {
        grid-template-columns: 1fr
    }

    .elicast-infra .rd-chips {
        grid-template-columns: 1fr
    }

    .elicast-infra .commit-card {
        padding: 30px 24px
    }
}
:root {
    --orange: #E08214; /* Brand orange (logo) */
    --orange-2: #F5A623; /* Lighter orange accent */
    --orange-soft: #FDF3E3; /* Soft orange background */
    --dark: #2B2B2B; /* Charcoal (logo text) */
    --ink: #3A3A3A;
    --body-c: #5B5B5B;
    --light: #ECEAE5; /* Light gray (presentation bg) */
    --lighter: #F7F6F2; /* Lighter page background */
    --white: #ffffff;
    --border: #E5E1D8;
    --shadow: 0 18px 45px rgba(30,30,30,.10);
    --radius: 14px;
    --ff-h: 'Oswald', sans-serif;
    --ff-b: 'Poppins', sans-serif;
    --dur: 6500ms; /* Hero slide duration (keep in sync with JS DUR) */
}

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px
}

body {
    font-family: var(--ff-b);
    color: var(--body-c);
    background: var(--lighter);
    line-height: 1.7;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

::selection {
    background: var(--orange);
    color: #fff
}

section {
    position: relative
}

.container {
    width: min(1200px,92%);
    margin-inline: auto
}

.ic {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: none
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .8s ease,transform .8s cubic-bezier(.2,.7,.3,1)
}

    .reveal.visible {
        opacity: 1;
        transform: none
    }

    .reveal.d1 {
        transition-delay: .12s
    }

    .reveal.d2 {
        transition-delay: .24s
    }

    .reveal.d3 {
        transition-delay: .36s
    }

    .reveal.d4 {
        transition-delay: .48s
    }

/* ---------- Section headings ---------- */
.sec {
    padding: 96px 0
}

.sec-head {
    max-width: 720px;
    margin-bottom: 54px
}

    .sec-head.center {
        margin-inline: auto;
        text-align: center
    }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase
}

    .kicker::before {
        content: '';
        width: 36px;
        height: 2px;
        background: var(--orange)
    }

.sec-head.center .kicker::after {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--orange)
}

.sec-title {
    font-family: var(--ff-h);
    font-size: clamp(30px,4vw,44px);
    line-height: 1.12;
    color: var(--dark);
    text-transform: uppercase;
    margin: 14px 0 12px;
    letter-spacing: .5px
}

    .sec-title em {
        font-style: normal;
        color: var(--orange)
    }

.sec-sub {
    font-size: 15.5px
}

/* ---------- Buttons ---------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    overflow: hidden;
    transition: .35s;
    z-index: 1
}

    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--dark);
        transform: translateX(-101%);
        transition: transform .4s cubic-bezier(.7,0,.3,1);
        z-index: -1
    }

    .btn:hover::before {
        transform: translateX(0)
    }

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 28px rgba(224,130,20,.35)
}

.btn-dark {
    background: var(--dark);
    color: #fff
}

    .btn-dark::before {
        background: var(--orange)
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.55)
}

    .btn-ghost::before {
        background: #fff
    }

    .btn-ghost:hover {
        color: var(--dark);
        border-color: #fff
    }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity .6s,visibility .6s
}

    #preloader.done {
        opacity: 0;
        visibility: hidden
    }

.pre-in {
    text-align: center
}

.pre-gear {
    width: 64px;
    height: 64px;
    color: var(--orange);
    animation: spin 2.4s linear infinite;
    margin-inline: auto
}

.pre-word {
    font-family: var(--ff-h);
    color: #fff;
    font-size: 26px;
    letter-spacing: 10px;
    margin-top: 16px
}

    .pre-word span {
        color: var(--orange)
    }

.pre-bar {
    width: 160px;
    height: 3px;
    background: #ffffff22;
    margin: 18px auto 0;
    overflow: hidden;
    border-radius: 3px
}

    .pre-bar i {
        display: block;
        height: 100%;
        width: 40%;
        background: var(--orange);
        animation: preSlide 1.1s ease-in-out infinite
    }

@keyframes preSlide {
    0% {
        transform: translateX(-120%)
    }

    100% {
        transform: translateX(420%)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ==========================================================================
   TOP BAR + HEADER + NAV (with dropdown)
   ========================================================================== */
.site-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000
}

.topbar {
    background: var(--dark);
    color: #cfcabf;
    font-size: 12.5px;
    transition: .35s;
    max-height: 60px
}

.topbar-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 9px 0
}

.tb-group {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.tb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .tb-item .ic {
        color: var(--orange)
    }

    .tb-item a:hover {
        color: var(--orange)
    }

.tb-social {
    display: flex;
    gap: 8px
}

    .tb-social a {
        width: 27px;
        height: 27px;
        display: grid;
        place-items: center;
        border: 1px solid #ffffff2b;
        border-radius: 6px;
        color: #ddd;
        font-size: 13px;
        transition: .3s
    }

        .tb-social a:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff
        }

.site-header {
    transition: .35s; background:#fff;
    padding: 16px 0
}

.header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px
}

.logo-gear {
    width: 44px;
    height: 44px;
    color: var(--orange);
    animation: spin 14s linear infinite
}

.logo-text {
    font-family: var(--ff-h);
    font-size: 27px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
    transition: .3s
}

    .logo-text small {
        display: block;
        font-family: var(--ff-b);
        font-size: 9px;
        letter-spacing: 3.2px;
        color: var(--orange-2);
        font-weight: 500;
        margin-top: 4px
    }

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px
}

    .nav-list > li {
        position: relative
    }

        .nav-list > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 15px;
            color: #f5a623;
            font-size: 14.5px;
            font-weight: 500;
            letter-spacing: .4px;
            transition: .3s;
            border-radius: 8px
        }

            .nav-list > li > a .ic {
                font-size: 13px;
                transition: transform .3s
            }

            .nav-list > li > a:hover, .nav-list > li > a.active {
                color: var(--orange-2)
            }

.has-dropdown:hover > a .ic {
    transform: rotate(180deg)
}

/* Dropdown (desktop hover / mobile click) */
.dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    border-top: 3px solid var(--orange);
    box-shadow: var(--shadow);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: .35s;
    z-index: 80
}

    .dropdown::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 26px;
        width: 14px;
        height: 14px;
        background: #fff;
        transform: rotate(45deg)
    }

    .dropdown li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 22px;
        font-size: 14px;
        color: var(--ink);
        transition: .25s
    }

        .dropdown li a .ic {
            color: var(--orange);
            font-size: 14px
        }

        .dropdown li a:hover {
            background: var(--orange-soft);
            color: var(--orange);
            padding-left: 28px
        }

@media(min-width:993px) {
    .has-dropdown:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}

.header-btn {
    padding: 12px 24px;
    font-size: 12.5px
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--orange);
    color: #fff;
    place-items: center;
    font-size: 22px
}

    .hamburger .ic-x {
        display: none
    }

body.nav-open .hamburger .ic-menu {
    display: none
}

body.nav-open .hamburger .ic-x {
    display: block
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20,20,20,.5);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 1090
}

body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible
}

/* Scrolled state */
.site-top.scrolled .topbar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0
}

.site-top.scrolled .site-header {
    background: rgba(255,255,255,.97);
    box-shadow: 0 10px 30px rgba(0,0,0,.09);
    padding: 10px 0
}

.site-top.scrolled .logo-text {
    color: var(--dark)
}

.site-top.scrolled .nav-list > li > a {
    color: var(--dark)
}

    .site-top.scrolled .nav-list > li > a:hover, .site-top.scrolled .nav-list > li > a.active {
        color: var(--orange)
    }

/* ==========================================================================
   HERO SLIDER (molten wipe + word reveal + kenburns)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 660px;
    background: linear-gradient(115deg,#1c1c1c 55%,#3a2a12 100%);
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease,visibility .9s;
    display: flex;
    align-items: center
}

    .hero-slide.active {
        opacity: 1;
        visibility: visible
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,#242424,#4a3414);
    overflow: hidden
}

    .slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.14);
        transition: transform 7s linear
    }

.hero-slide.active .slide-bg img {
    transform: scale(1)
}

.slide-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(18,18,18,.92) 8%,rgba(18,18,18,.62) 46%,rgba(224,130,20,.28) 100%)
}

.hero-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s .2s
}

.hero-slide.active::after {
    transform: scaleY(1)
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding-top: 70px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224,130,20,.16);
    border: 1px solid rgba(245,166,35,.5);
    color: var(--orange-2);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 12.5px;
    letter-spacing: 2.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 22px
}

    .hero-badge b {
        font-family: var(--ff-h);
        font-size: 16px;
        color: #fff;
        background: var(--orange);
        border-radius: 30px;
        padding: 2px 11px
    }

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--orange-2);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px
}

    .hero-kicker::before {
        content: '';
        width: 46px;
        height: 2px;
        background: var(--orange)
    }

.hero-title {
    font-family: var(--ff-h);
    font-weight: 700;
    color: #fff;
    font-size: clamp(36px,5.6vw,68px);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 1px
}

    .hero-title .w {
        display: inline-block;
        transform: translateY(120%);
        opacity: 0
    }

.hero-slide.active .hero-title .w {
    animation: wordUp .85s cubic-bezier(.2,.7,.3,1) forwards;
    animation-delay: var(--d,0s)
}

@keyframes wordUp {
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.hero-title .hl {
    color: var(--orange-2)
}

.hero-desc {
    color: #d8d3c8;
    max-width: 600px;
    margin: 22px 0 34px;
    font-size: 16px;
    font-weight: 300
}

.hero-slide.active .hero-kicker, .hero-slide.active .hero-badge, .hero-slide.active .hero-desc, .hero-slide.active .hero-btns {
    animation: fadeUp .8s ease forwards;
    opacity: 0
}

.hero-slide.active .hero-badge {
    animation-delay: .05s
}

.hero-slide.active .hero-kicker {
    animation-delay: .15s
}

.hero-slide.active .hero-desc {
    animation-delay: .75s
}

.hero-slide.active .hero-btns {
    animation-delay: .9s
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* Giant ghost word drifting behind slides */
.hero-ghost {
    position: absolute;
    right: -1%;
    bottom: 4%;
    z-index: 2;
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: 19vw;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.09);
    pointer-events: none;
    animation: ghostDrift 16s ease-in-out infinite alternate
}

@keyframes ghostDrift {
    to {
        transform: translateX(-40px) rotate(-1.5deg)
    }
}

/* Molten-metal wipe on slide change */
.hero-wipe {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden
}

    .hero-wipe span {
        position: absolute;
        top: -12%;
        bottom: -12%;
        left: -150%;
        width: 125%;
        transform: skewX(-14deg)
    }

    .hero-wipe .wp1 {
        background: linear-gradient(100deg,var(--orange),var(--orange-2))
    }

    .hero-wipe .wp2 {
        background: var(--dark);
        width: 60%
    }

    .hero-wipe.run .wp1 {
        animation: wipeMove .95s cubic-bezier(.75,0,.25,1) both
    }

    .hero-wipe.run .wp2 {
        animation: wipeMove .95s cubic-bezier(.75,0,.25,1) .09s both
    }

@keyframes wipeMove {
    to {
        left: 160%
    }
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 7;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: .35s;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(3px)
}

    .hero-arrow:hover {
        background: var(--orange);
        border-color: var(--orange);
        transform: translateY(-50%) scale(1.08)
    }

    .hero-arrow.prev {
        left: 26px
    }

    .hero-arrow.next {
        right: 26px
    }

/* Bottom controls: dots + counter + progress */
.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 7;
    padding: 0 0 22px
}

.hero-bottom-in {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px
}

.hero-dots {
    display: flex;
    gap: 9px
}

    .hero-dots .dot {
        width: 38px;
        height: 5px;
        border-radius: 4px;
        background: rgba(255,255,255,.25);
        position: relative;
        overflow: hidden;
        transition: .3s
    }

        .hero-dots .dot::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--orange-2);
            transform: scaleX(0);
            transform-origin: left
        }

        .hero-dots .dot.active {
            background: rgba(255,255,255,.35)
        }

            .hero-dots .dot.active::after {
                animation: dotProg var(--dur) linear forwards
            }

@keyframes dotProg {
    to {
        transform: scaleX(1)
    }
}

.hero-count {
    font-family: var(--ff-h);
    color: #fff;
    font-size: 15px;
    letter-spacing: 3px
}

    .hero-count b {
        color: var(--orange-2);
        font-size: 22px
    }

.hero-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: rgba(255,255,255,.12);
    z-index: 8
}

    .hero-progress span {
        display: block;
        height: 100%;
        width: 0;
        background: var(--orange)
    }

    .hero-progress.run span {
        animation: heroProg var(--dur) linear forwards
    }

@keyframes heroProg {
    to {
        width: 100%
    }
}

.hero:hover .hero-progress span, .hero:hover .dot.active::after {
    animation-play-state: paused
}

/* Scroll cue */
.hero-cue {
    position: absolute;
    bottom: 86px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    color: #ffffffb0;
    display: grid;
    place-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 3px
}

    .hero-cue i {
        width: 24px;
        height: 40px;
        border: 2px solid #ffffff70;
        border-radius: 14px;
        position: relative;
        display: block
    }

        .hero-cue i::after {
            content: '';
            position: absolute;
            top: 7px;
            left: 50%;
            width: 4px;
            height: 8px;
            background: var(--orange-2);
            border-radius: 3px;
            transform: translateX(-50%);
            animation: cue 1.6s ease-in-out infinite
        }

@keyframes cue {
    0%,100% {
        transform: translate(-50%,0);
        opacity: 1
    }

    70% {
        transform: translate(-50%,14px);
        opacity: .2
    }
}

/* ==========================================================================
   ORANGE KEYWORD TICKER
   ========================================================================== */
.ticker {
    background: var(--orange);
    overflow: hidden;
    padding: 15px 0;
    position: relative
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    width: max-content;
    animation: tick 32s linear infinite
}

.ticker:hover .ticker-track {
    animation-play-state: paused
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
    color: #2b1d05;
    font-family: var(--ff-h);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase
}

    .ticker-track span i {
        font-style: normal;
        color: #fff;
        font-size: 18px
    }

@keyframes tick {
    to {
        transform: translateX(-50%)
    }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center
}

.about-collage {
    position: relative;
    min-height: 520px
}

.ac-img {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg,#c9c4b8,#8f8a7e)
}

    .ac-img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .ac-img.a1 {
        width: 62%;
        height: 64%;
        top: 0;
        left: 0;
        z-index: 2
    }

    .ac-img.a2 {
        width: 58%;
        height: 56%;
        bottom: 0;
        right: 0;
        z-index: 3
    }

.ac-block {
    position: absolute;
    background: var(--orange);
    border-radius: var(--radius)
}

    .ac-block.b1 {
        width: 46%;
        height: 46%;
        top: 8%;
        right: 4%;
        z-index: 1
    }

    .ac-block.b2 {
        width: 34%;
        height: 30%;
        bottom: 4%;
        left: 6%;
        z-index: 1
    }

.ac-badge {
    position: absolute;
    z-index: 4;
    left: 6%;
    bottom: 16%;
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow)
}

    .ac-badge b {
        display: block;
        font-family: var(--ff-h);
        font-size: 40px;
        color: var(--orange-2);
        line-height: 1
    }

    .ac-badge small {
        font-size: 11.5px;
        letter-spacing: 1.5px;
        text-transform: uppercase
    }

.ac-gear {
    position: absolute;
    z-index: 4;
    top: 6%;
    right: 2%;
    width: 86px;
    height: 86px;
    color: var(--orange);
    opacity: .9;
    animation: spin 18s linear infinite
}

.about-quote {
    border-left: 4px solid var(--orange);
    background: var(--orange-soft);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink);
    margin: 22px 0;
    font-size: 15px
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 24px 0 30px
}

    .about-list li {
        display: flex;
        gap: 10px;
        align-items: center;
        font-size: 14.5px;
        font-weight: 500;
        color: var(--ink)
    }

    .about-list .ic {
        color: var(--orange);
        background: var(--orange-soft);
        border-radius: 50%;
        padding: 5px;
        width: 24px;
        height: 24px
    }

/* Stats strip */
.stats {
    background: var(--dark);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
    margin-top: -40px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow)
}

.stat {
    padding: 44px 20px;
    text-align: center;
    border-right: 1px solid #ffffff14
}

    .stat:last-child {
        border-right: none
    }

    .stat b {
        font-family: var(--ff-h);
        font-size: clamp(30px,3.4vw,44px);
        color: var(--orange-2);
        display: block;
        line-height: 1
    }

    .stat small {
        color: #cfcabf;
        font-size: 12.5px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        display: block;
        margin-top: 8px
    }

/* ==========================================================================
   VISION & MISSION
   ========================================================================== */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.vm-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 26px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 8px 26px rgba(30,30,30,.06);
    transition: .4s
}

    .vm-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--orange);
        box-shadow: var(--shadow)
    }

.vm-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--orange);
    background: var(--orange-soft);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase
}

.vm-ic {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: .4s
}

.vm-card:hover .vm-ic {
    background: var(--dark);
    transform: rotate(-8deg)
}

.vm-card p {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink)
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-sec {
    background: var(--light)
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.srv-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 26px;
    position: relative;
    overflow: hidden;
    transition: .4s;
    border: 1px solid var(--border)
}

    .srv-card::after {
        content: '';
        position: absolute;
        right: -34px;
        top: -34px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: var(--orange-soft);
        transition: .5s
    }

    .srv-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
        border-color: transparent
    }

        .srv-card:hover::after {
            transform: scale(2.6)
        }

.srv-ic {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--orange),var(--orange-2));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 10px 22px rgba(224,130,20,.35)
}

.srv-card h3 {
    font-family: var(--ff-h);
    font-size: 19px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.srv-card p {
    font-size: 13.8px;
    position: relative;
    z-index: 1
}

.srv-num {
    position: absolute;
    bottom: 10px;
    right: 16px;
    font-family: var(--ff-h);
    font-size: 44px;
    color: #00000008;
    font-weight: 700;
    z-index: 0
}

/* ==========================================================================
   TECHNOLOGY & FACILITIES (3 circles)
   ========================================================================== */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 34px
}

.fac-circle {
    background: #fff;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12%;
    position: relative;
    box-shadow: var(--shadow);
    border: 2px dashed var(--orange);
    transition: .45s
}

    .fac-circle:hover {
        transform: scale(1.04);
        background: var(--dark);
        border-style: solid
    }

        .fac-circle:hover h3, .fac-circle:hover p, .fac-circle:hover .fac-num {
            color: #fff
        }

        .fac-circle:hover .fac-num {
            color: var(--orange-2)
        }

.fac-num {
    font-family: var(--ff-h);
    font-size: 64px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
    transition: .45s;
    text-shadow: 3px 3px 0 var(--orange-soft)
}

.fac-circle h3 {
    font-family: var(--ff-h);
    font-size: 19px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: .45s
}

.fac-circle p {
    font-size: 13.5px;
    transition: .45s
}

.fac-note {
    margin-top: 46px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 34px;
    display: flex;
    gap: 18px;
    align-items: center
}

    .fac-note .ic {
        font-size: 34px
    }

    .fac-note p {
        color: #fff;
        font-weight: 500;
        font-size: 15px
    }

/* ==========================================================================
   QUALITY ASSURANCE
   ========================================================================== */
.qa-sec {
    background: var(--light)
}

.qa-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center
}

.qa-featured {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

    .qa-featured .qa-img {
        height: 300px;
        background: linear-gradient(135deg,#3c4650,#20262c);
        display: grid;
        place-items: center;
        color: var(--orange-2);
        font-size: 64px;
        position: relative;
        overflow: hidden
    }

        .qa-featured .qa-img::after {
            content: 'CMM';
            position: absolute;
            font-family: var(--ff-h);
            font-size: 120px;
            color: #ffffff08;
            font-weight: 700;
            bottom: -28px;
            right: 6px
        }

    .qa-featured .qa-body {
        padding: 30px
    }

    .qa-featured h3 {
        font-family: var(--ff-h);
        font-size: 24px;
        color: var(--dark);
        text-transform: uppercase;
        margin-bottom: 10px
    }

.qa-equip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.qa-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: .35s
}

    .qa-item:hover {
        border-color: var(--orange);
        transform: translateY(-6px);
        box-shadow: var(--shadow)
    }

    .qa-item .ic {
        color: var(--orange);
        font-size: 24px;
        background: var(--orange-soft);
        padding: 10px;
        border-radius: 10px
    }

    .qa-item h4 {
        font-family: var(--ff-h);
        font-size: 15.5px;
        color: var(--dark);
        text-transform: uppercase;
        letter-spacing: .4px
    }

    .qa-item small {
        font-size: 12.5px
    }

/* ==========================================================================
   MACHINES GALLERY
   ========================================================================== */
.mach-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px
}

.mach-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 26px rgba(30,30,30,.07);
    transition: .4s;
    position: relative
}

    .mach-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow)
    }

.mach-thumb {
    height: 190px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 52px;
    position: relative;
    overflow: hidden
}

    .mach-thumb::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 20%,rgba(255,255,255,.25),transparent 45%)
    }

    .mach-thumb .ic {
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 6px 14px rgba(0,0,0,.3))
    }

    .mach-thumb::after {
        content: '';
        position: absolute;
        bottom: -46px;
        right: -46px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(255,255,255,.14)
    }

.mach-body {
    padding: 22px 24px 26px
}

    .mach-body h3 {
        font-family: var(--ff-h);
        font-size: 19px;
        color: var(--dark);
        text-transform: uppercase
    }

    .mach-body small {
        color: var(--orange);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase
    }

    .mach-body p {
        font-size: 13.5px;
        margin-top: 8px
    }

/* ==========================================================================
   PRODUCTS / PARTS
   ========================================================================== */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px
}

.prod-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 300px;
    background: linear-gradient(140deg,#b9b4a8,#6f6b62);
    box-shadow: var(--shadow);
    transition: .45s
}

    .prod-card:nth-child(2n) {
        background: linear-gradient(140deg,#8f8a7e,#4c4a44)
    }

    .prod-card:hover {
        transform: translateY(-10px) scale(1.015)
    }

    .prod-card .gear-bg {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #ffffff1c;
        font-size: 150px
    }

    .prod-card:hover .gear-bg {
        animation: spin 6s linear infinite
    }

.prod-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,rgba(20,20,20,.92),transparent);
    padding: 52px 22px 20px;
    color: #fff
}

    .prod-label h3 {
        font-family: var(--ff-h);
        font-size: 19px;
        letter-spacing: .6px;
        text-transform: uppercase
    }

    .prod-label small {
        color: var(--orange-2);
        font-weight: 600;
        letter-spacing: 2px;
        font-size: 11.5px;
        text-transform: uppercase
    }

.prod-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase
}

/* ==========================================================================
   PROCESS (Casting to Delivery)
   ========================================================================== */
.proc-sec {
    background: var(--dark)
}

    .proc-sec .sec-title {
        color: #fff
    }

    .proc-sec .kicker {
        color: var(--orange-2)
    }

    .proc-sec .sec-sub {
        color: #b9b4a8
    }

.proc-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
    position: relative;
    margin-top: 20px
}

    .proc-grid::before {
        content: '';
        position: absolute;
        top: 44px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--orange) 0 10px,transparent 10px 20px)
    }

.proc-step {
    text-align: center;
    position: relative;
    z-index: 1
}

.proc-num {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--ff-h);
    font-size: 26px;
    position: relative;
    box-shadow: 0 0 0 8px rgba(224,130,20,.18);
    transition: .4s
}

.proc-step:hover .proc-num {
    background: var(--orange-2);
    transform: scale(1.1) rotate(8deg)
}

.proc-step h3 {
    font-family: var(--ff-h);
    color: #fff;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.proc-step p {
    color: #b9b4a8;
    font-size: 13.5px;
    margin-top: 6px
}

/* ==========================================================================
   INDUSTRIES SERVED (animated donut)
   ========================================================================== */
.ind-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px
}

.donut {
    width: min(340px,80vw);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    filter: drop-shadow(0 20px 35px rgba(224,130,20,.25))
}

    .donut::after {
        content: '';
        position: absolute;
        inset: 24%;
        background: var(--lighter);
        border-radius: 50%;
        box-shadow: inset 0 0 0 1px var(--border)
    }

.donut-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    text-align: center
}

    .donut-center b {
        font-family: var(--ff-h);
        font-size: 30px;
        color: var(--dark);
        display: block;
        line-height: 1.1
    }

    .donut-center small {
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--orange);
        font-weight: 600;
        text-transform: uppercase
    }

.legend {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center
}

    .legend li {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 14px;
        color: var(--ink);
        font-weight: 500
    }

    .legend i {
        width: 15px;
        height: 15px;
        border-radius: 4px;
        display: inline-block
    }

.ind-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px
}

    .ind-chips span {
        background: #fff;
        border: 1px solid var(--border);
        padding: 9px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        color: var(--ink);
        transition: .3s
    }

        .ind-chips span:hover {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            transform: translateY(-3px)
        }

/* ==========================================================================
   EXPERT TEAM
   ========================================================================== */
.team-sec {
    background: var(--light)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.team-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(30,30,30,.06);
    transition: .4s;
    position: relative;
    overflow: hidden
}

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg,var(--orange),var(--orange-2));
        transform: scaleX(0);
        transition: .4s;
        transform-origin: left
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow)
    }

        .team-card:hover::before {
            transform: scaleX(1)
        }

.team-ava {
    width: 104px;
    height: 104px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--orange),var(--orange-2));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--ff-h);
    font-size: 34px;
    letter-spacing: 1px;
    box-shadow: 0 12px 26px rgba(224,130,20,.35);
    position: relative
}

    .team-ava::after {
        content: '';
        position: absolute;
        inset: -8px;
        border: 2px dashed var(--orange);
        border-radius: 50%;
        opacity: .5;
        animation: spin 20s linear infinite
    }

.team-card h3 {
    font-family: var(--ff-h);
    font-size: 21px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .5px
}

.team-role {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 6px 0 14px
}

.team-card p {
    font-size: 13.8px
}

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
    align-items: stretch
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 8px 26px rgba(30,30,30,.07);
    transition: .4s;
    position: relative;
    overflow: hidden
}

    .why-card::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: var(--orange-soft);
        transition: .5s
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow)
    }

        .why-card:hover::after {
            transform: scale(2)
        }

    .why-card > * {
        position: relative;
        z-index: 1
    }

.why-ic {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--dark);
    color: var(--orange-2);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: .4s
}

.why-card:hover .why-ic {
    background: var(--orange);
    color: #fff;
    transform: rotate(-10deg)
}

.why-card h3 {
    font-family: var(--ff-h);
    font-size: 20px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 10px
}

.why-call {
    background: linear-gradient(135deg,var(--orange),#c96f08);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

    .why-call .why-ic {
        background: #ffffff26;
        color: #fff
    }

    .why-call h3 {
        color: #fff
    }

    .why-call p {
        color: #fff3e2
    }

    .why-call a {
        font-family: var(--ff-h);
        font-size: 26px;
        letter-spacing: 1px;
        color: #fff;
        margin-top: 8px;
        display: inline-block
    }

        .why-call a:hover {
            color: var(--dark)
        }

/* ==========================================================================
   CUSTOMIZATION / ENVIRONMENT / ETP
   ========================================================================== */
.eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.eco-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 36px;
    box-shadow: 0 8px 26px rgba(30,30,30,.07);
    position: relative;
    overflow: hidden;
    transition: .4s
}

    .eco-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow)
    }

    .eco-card .big-ic {
        position: absolute;
        top: -24px;
        right: -14px;
        font-size: 120px;
        color: var(--orange);
        opacity: .08;
        transform: rotate(18deg)
    }

    .eco-card h3 {
        font-family: var(--ff-h);
        font-size: 24px;
        color: var(--dark);
        text-transform: uppercase;
        margin-bottom: 14px
    }

.etp-sec {
    margin-top: 70px;
    background: var(--dark);
    border-radius: 22px;
    padding: 60px 50px;
    color: #fff;
    overflow: hidden;
    position: relative
}

    .etp-sec::before {
        content: '';
        position: absolute;
        right: -90px;
        top: -90px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(224,130,20,.15)
    }

.etp-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 1
}

.etp-step {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff10;
    border: 1px solid #ffffff20;
    color: #efece5;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    transition: .3s
}

    .etp-step:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        transform: translateY(-3px)
    }

    .etp-step b {
        color: var(--orange-2);
        font-family: var(--ff-h)
    }

/* ==========================================================================
   COMPETITIVE ADVANTAGE
   ========================================================================== */
.comp-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center
}

.itm-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex
}

.itm-left {
    flex: 1;
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    border-right: 1px dashed var(--border)
}

.itm-logo {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    background: var(--orange-soft);
    display: grid;
    place-items: center;
    color: var(--orange);
    font-size: 42px
}

.itm-left h4 {
    font-family: var(--ff-h);
    font-size: 22px;
    color: var(--dark);
    letter-spacing: 2px
}

.itm-left small {
    color: var(--body-c);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.itm-right {
    flex: 1.1;
    min-height: 300px;
    background: linear-gradient(135deg,#c9c4b8,#7c786d);
    position: relative;
    overflow: hidden
}

    .itm-right .gear-bg {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #ffffff26;
        font-size: 150px
    }

.comp-points {
    margin-top: 26px
}

    .comp-points li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 14px;
        font-size: 14.5px;
        color: var(--ink)
    }

    .comp-points .ic {
        color: #fff;
        background: var(--orange);
        border-radius: 50%;
        padding: 5px;
        width: 23px;
        height: 23px;
        margin-top: 2px
    }

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */
.testi-sec {
    background: var(--light);
    overflow: hidden
}

.testi-shell {
    position: relative;
    max-width: 860px;
    margin-inline: auto
}

.testi-viewport {
    overflow: hidden;
    border-radius: var(--radius)
}

.testi-track {
    display: flex;
    transition: transform .7s cubic-bezier(.65,0,.35,1)
}

.t-slide {
    min-width: 100%;
    background: #fff;
    padding: 52px 56px;
    text-align: center;
    position: relative
}

.t-quote-ic {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(224,130,20,.35)
}

.t-slide p {
    font-size: 17px;
    font-style: italic;
    color: var(--ink);
    max-width: 640px;
    margin: 0 auto 24px
}

.t-stars {
    color: var(--orange-2);
    letter-spacing: 4px;
    margin-bottom: 14px
}

.t-name {
    font-family: var(--ff-h);
    font-size: 19px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .5px
}

.t-comp {
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    align-items: center
}

    .testi-nav button {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1.5px solid var(--orange);
        color: var(--orange);
        display: grid;
        place-items: center;
        transition: .3s
    }

        .testi-nav button:hover {
            background: var(--orange);
            color: #fff
        }

.t-dots {
    display: flex;
    gap: 8px
}

    .t-dots button {
        width: 11px;
        height: 11px;
        border-radius: 30px;
        background: #c9c4b8;
        transition: .3s;
        padding: 0
    }

        .t-dots button.active {
            width: 32px;
            background: var(--orange)
        }

/* ==========================================================================
   CLIENTS MARQUEE
   ========================================================================== */
.clients-sec {
    padding: 70px 0
}

.marquee {
    overflow: hidden;
    position: relative;
    padding: 10px 0
}

    .marquee::before, .marquee::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none
    }

    .marquee::before {
        left: 0;
        background: linear-gradient(90deg,var(--lighter),transparent)
    }

    .marquee::after {
        right: 0;
        background: linear-gradient(-90deg,var(--lighter),transparent)
    }

.marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: tick 28s linear infinite
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

.client-item {
    flex: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .35s;
    min-height: 84px
}

    .client-item:hover {
        border-color: var(--orange);
        box-shadow: var(--shadow);
        transform: translateY(-4px)
    }

    .client-item img {
        max-height: 44px;
        max-width: 150px;
        object-fit: contain
    }

    .client-item .c-name {
        font-family: var(--ff-h);
        font-size: 20px;
        color: var(--dark);
        letter-spacing: 1.5px;
        text-transform: uppercase
    }

    .client-item .c-sub {
        display: block;
        font-family: var(--ff-b);
        font-size: 10.5px;
        letter-spacing: 1.5px;
        color: #9a958a;
        text-transform: uppercase
    }

    .client-item .ic {
        color: var(--orange);
        font-size: 26px
    }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
    background: linear-gradient(115deg,var(--orange),#c96f08);
    padding: 78px 0;
    position: relative;
    overflow: hidden
}

    .cta-band .gear-bg {
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        color: #ffffff2b;
        font-size: 230px;
        animation: spin 26s linear infinite
    }

.cta-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

    .cta-in h2 {
        font-family: var(--ff-h);
        color: #fff;
        font-size: clamp(28px,3.4vw,40px);
        text-transform: uppercase;
        line-height: 1.15
    }

    .cta-in p {
        color: #ffefd8;
        max-width: 560px;
        margin-top: 8px
    }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 44px;
    align-items: start
}

.c-info {
    display: grid;
    gap: 18px
}

.c-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    transition: .35s
}

    .c-item:hover {
        border-color: var(--orange);
        box-shadow: var(--shadow);
        transform: translateX(6px)
    }

    .c-item .ic {
        color: #fff;
        background: var(--orange);
        border-radius: 12px;
        padding: 13px;
        font-size: 20px;
        flex: none
    }

    .c-item h4 {
        font-family: var(--ff-h);
        font-size: 16px;
        color: var(--dark);
        text-transform: uppercase;
        letter-spacing: .5px
    }

    .c-item p, .c-item a {
        font-size: 14px;
        color: var(--body-c)
    }

        .c-item a:hover {
            color: var(--orange)
        }

.c-form {
    background: #fff;
    border-radius: 18px;
    padding: 44px 40px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--orange)
}

    .c-form h3 {
        font-family: var(--ff-h);
        font-size: 26px;
        color: var(--dark);
        text-transform: uppercase;
        margin-bottom: 6px
    }

    .c-form > p {
        font-size: 14px;
        margin-bottom: 26px
    }

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.c-form input, .c-form select, .c-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--ink);
    background: var(--lighter);
    transition: .3s;
    margin-bottom: 16px;
    outline: none
}

    .c-form input:focus, .c-form select:focus, .c-form textarea:focus {
        border-color: var(--orange);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(224,130,20,.12)
    }

.c-form textarea {
    resize: vertical;
    min-height: 120px
}

.form-note {
    font-size: 12px;
    color: #9a958a;
    margin-top: 12px
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%,120px);
    background: var(--dark);
    color: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 2000;
    transition: transform .5s cubic-bezier(.2,.9,.3,1.3);
    box-shadow: var(--shadow)
}

    .toast.show {
        transform: translate(-50%,0)
    }

    .toast .ic {
        color: var(--orange-2);
        font-size: 20px
    }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--dark);
    color: #b9b4a8;
    padding: 80px 0 0;
    position: relative
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg,var(--orange),var(--orange-2))
    }

.f-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 44px;
    padding-bottom: 56px
}

.f-about .logo-text {
    color: #fff
}

.f-about p {
    font-size: 14px;
    margin: 20px 0 24px
}

.f-social {
    display: flex;
    gap: 10px
}

    .f-social a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid #ffffff22;
        display: grid;
        place-items: center;
        color: #ddd;
        font-size: 16px;
        transition: .3s
    }

        .f-social a:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
            transform: translateY(-4px)
        }

.f-col h4 {
    font-family: var(--ff-h);
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px
}

    .f-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 36px;
        height: 3px;
        background: var(--orange)
    }

.f-col ul li {
    margin-bottom: 11px
}

.f-col ul a {
    font-size: 14px;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    transition: .3s
}

    .f-col ul a .ic {
        color: var(--orange);
        font-size: 12px
    }

    .f-col ul a:hover {
        color: var(--orange-2);
        padding-left: 5px
    }

.f-contact li {
    display: flex;
    gap: 13px;
    margin-bottom: 16px;
    font-size: 13.8px
}

.f-contact .ic {
    color: var(--orange-2);
    margin-top: 4px
}

.f-contact a:hover {
    color: var(--orange-2)
}

/* Copyright bar — 2 sections: copyright text | 2 logo slots */
.f-bottom {
    border-top: 1px solid #ffffff14;
    padding: 22px 0
}

.f-bottom-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.f-copy {
    font-size: 13.5px
}

    .f-copy a {
        color: var(--orange-2)
    }

    .f-copy small {
        display: block;
        font-size: 12px;
        color: #8f8a7e;
        margin-top: 3px
    }

.f-logos {
    display: flex;
    gap: 14px;
    align-items: center
}
/* EDIT HERE: replace the images in index.html with your own logos */
.flogo {
    position: relative;
    width: 110px;
    height: 52px;
    border: 1.5px dashed #ffffff3a;
    border-radius: 10px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff08
}

    .flogo b {
        font-size: 10px;
        letter-spacing: 2px;
        color: #8f8a7e;
        font-weight: 600
    }

    .flogo img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 6px;
        background: #fff;
        z-index: 2;
        border-radius: 9px
    }

/* Floating buttons */
.float-btns {
    position: fixed;
    right: 24px;
    bottom: 26px;
    z-index: 900;
    display: grid;
    gap: 12px
}

.fbtn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 12px 26px rgba(0,0,0,.25);
    transition: .35s
}

.fbtn-call {
    background: var(--orange)
}

.fbtn-top {
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px)
}

    .fbtn-top.show {
        opacity: 1;
        visibility: visible;
        transform: none
    }

.fbtn:hover {
    transform: translateY(-4px) scale(1.06)
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media(max-width:1100px) {
    .srv-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .vm-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .nav-list > li > a {
        padding: 12px 10px
    }
}

@media(max-width:992px) {
    .hamburger {
        display: grid
    }

    .header-btn {
        display: none
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(330px,88vw);
        height: 100vh;
        background: #fff;
        z-index: 1100;
        transition: right .45s cubic-bezier(.7,0,.3,1);
        overflow-y: auto;
        padding: 90px 28px 40px;
        box-shadow: -20px 0 60px rgba(0,0,0,.2)
    }

    body.nav-open .nav {
        right: 0
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px
    }

        .nav-list > li > a {
            color: var(--dark) !important;
            font-size: 16px;
            padding: 14px 10px;
            border-bottom: 1px solid var(--border);
            border-radius: 0;
            justify-content: space-between
        }

            .nav-list > li > a:hover, .nav-list > li > a.active {
                color: var(--orange) !important
            }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: var(--lighter);
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        padding: 0 0;
        transition: max-height .45s ease,padding .3s;
        min-width: 0;
        margin: 0 0 6px
    }

        .dropdown::before {
            display: none
        }

    .has-dropdown.open .dropdown {
        max-height: 460px;
        padding: 8px 0
    }

    .dropdown li a {
        color: var(--ink) !important
    }

    .tb-group .tb-hide {
        display: none
    }

    .hero {
        min-height: 620px
    }

    .about-grid, .qa-grid, .ind-grid, .comp-grid, .contact-grid, .eco-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .fac-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto
    }

    .proc-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 40px
    }

        .proc-grid::before {
            display: none
        }

    .mach-grid, .prod-grid, .team-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .stats {
        grid-template-columns: repeat(2,1fr)
    }

    .stat:nth-child(2) {
        border-right: none
    }

    .stat:nth-child(1), .stat:nth-child(2) {
        border-bottom: 1px solid #ffffff14
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .f-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-ghost {
        font-size: 26vw
    }
}

@media(max-width:640px) {
    .sec {
        padding: 70px 0
    }

    .srv-grid, .vm-grid, .mach-grid, .prod-grid, .team-grid, .f-row {
        grid-template-columns: 1fr
    }

    .proc-grid {
        grid-template-columns: 1fr
    }

    .f-grid {
        grid-template-columns: 1fr
    }

    .f-bottom-in {
        flex-direction: column;
        text-align: center
    }

    .topbar-in {
        justify-content: center
    }

    .hero-arrow {
        display: none
    }

    .hero-cue {
        display: none
    }

    .hero-content {
        padding-top: 110px
    }

    .t-slide {
        padding: 40px 26px
    }

    .etp-sec {
        padding: 44px 24px
    }

    .about-list {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr 1fr
    }

    .ac-badge {
        padding: 14px 18px
    }

        .ac-badge b {
            font-size: 30px
        }

    .about-collage {
        min-height: 420px
    }
}
